home *** CD-ROM | disk | FTP | other *** search
- !
- ! Copyright (c) 1994
- ! by CompuServe Incorporated, Columbus, Ohio
- !
- ! The information in this software is subject to change without
- ! notice and should not be construed as a commitment by CompuServe.
- !
- ! DATAPAC:
- ! Connect to DataPac
- ! Success: returns %Success
- ! Failure: saves error msg in %FailureMsg and returns %Failure
- !
- !+V
- ! "3.5.2"
- !-V
-
- show "Connecting to DataPac";
- Tries = 5;
- on cancel goto Return_Cancel;
-
- Wait_DataPac:
- if Tries = 0 goto DataPac_Failure;
- Tries = Tries - 1;
-
- wait
- "Connected" goto Return_Success,
- "Invalid" goto Wait_DataPac, ! Try again.
- "DataPac" goto Send_DataPac_Host
- until 15;
-
- send "..." & %CR;
- goto Wait_DataPac;
-
- Send_DataPac_Host:
- wait until 10;
- send "29400138" & %CR;
-
- Wait_For_Connect: ! Second wait loop will not match DataPac.
- if Tries = 0 goto DataPac_Failure;
- Tries = Tries - 1;
-
- wait
- "Connected" goto Return_Success,
- "Invalid" goto Wait_For_Connect ! Try again.
- until 30;
-
- send "..." & %CR;
- goto Wait_DataPac;
-
- DataPac_Failure:
- define %FailureMsg = "DataPac not responding";
- exit %Failure;
-
- Return_Cancel:
- exit %Cancel;
-
- Return_Success:
- exit %Success;
-